home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000381_news@columbia.edu _Thu Jun 15 14:39:20 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id OAA01295
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Thu, 15 Jun 2000 14:39:20 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA06689
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 15 Jun 2000 14:39:19 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id OAA27169
  10.     for kermit.misc@watsun.cc.columbia.edu; Thu, 15 Jun 2000 14:31:49 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: jhill@sawmillmanager.com (John Hill)
  13. Subject: Re: Spaces consolidated in echo command
  14. Organization: Logical Systems, Inc.
  15. Message-ID: <3949200b.10772524@news-server.maine.rr.com>
  16. Date: Thu, 15 Jun 2000 18:30:40 GMT
  17. To: kermit.misc@columbia.edu
  18.  
  19. On 15 Jun 2000 18:19:17 GMT, fdc@watsun.cc.columbia.edu (Frank da
  20. Cruz) wrote:
  21.  
  22. Hi Frank,
  23.  
  24. I do not have any leading or trailing spaces.  I am using the box
  25. drawing characters to display a rectangular box and the sides of the
  26. box is made of two verticle lines with spaces between each set.  For
  27. example " ||                         || ".  I have about 30 spaces
  28. between them but the display only shows about 5.  I thought is might
  29. be an issue with tabs being used to create the file and kermit
  30. consolidating this down to on space for each tab but I tried deleting
  31. the spaces and entering them again with no success.
  32.  
  33.  
  34. >In article <39491ba4.9646209@news-server.maine.rr.com>,
  35. >John Hill <jhill@sawmillmanager.com> wrote:
  36. >: I am using MS-DOS Kermit v3.15 to transfer files from a handheld
  37. >: computer to a PC.  As part of this routine I use the echo command to
  38. >: display box drawings, two verticle line in particular, with many
  39. >: spaces between them.  It appears as though some of these spaces are
  40. >: being discarded.  Any help would be appreciated.  Thanks.
  41. >:
  42. >ECHO by itself should cause a blank line to be displayed.
  43. >
  44. >If given some text to echo, ECHO strips leading and trailing blanks
  45. >and then displays the text.  The following commands have the same effect:
  46. >
  47. >  echo this is some text
  48. >  echo          this is some text
  49. >
  50. >To have leading and trailing blanks preserved, enclose the text in
  51. >curly braces:
  52. >
  53. >  echo {   this is some text  }
  54. >
  55. >- Frank
  56.